home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / nihcl-30.lha / nihcl-3.0 / ex / AllLink.c next >
C/C++ Source or Header  |  1990-05-15  |  490b  |  17 lines

  1. // AllLink.c -- Link used by AllVehicles LinkedList
  2.  
  3. #include "AllLink.h"
  4. #include "nihclIO.h"
  5.  
  6. #define THIS    AllLink
  7. #define BASE    Link
  8. #define BASE_CLASSES BASE::desc()
  9. #define MEMBER_CLASSES
  10. #define VIRTUAL_BASE_CLASSES
  11.  
  12. DEFINE_ABSTRACT_CLASS(AllLink,1,"$Header: /afs/alw.nih.gov/unix/sun4_40c/usr/local/src/nihcl-3.0/share/ex/RCS/AllLink.c,v 3.0 90/05/15 22:43:11 kgorlen Rel $",NULL,NULL);
  13.  
  14. AllLink::AllLink(OIOin& strm) : BASE(strm) {}
  15.  
  16. AllLink::AllLink(OIOifd& fd) : BASE(fd) {}
  17.